home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / chown.c < prev    next >
C/C++ Source or Header  |  1988-08-25  |  2KB  |  102 lines

  1. /* 
  2.  * chown.c --
  3.  *
  4.  *    Procedures to map from Unix chown and fchown system calls
  5.  *    to Sprite system call.
  6.  *
  7.  * Copyright 1987 Regents of the University of California
  8.  * All rights reserved.
  9.  */
  10.  
  11. #ifndef lint
  12. static char rcsid[] = "$Header: chown.c,v 1.3 88/08/25 14:41:09 brent Exp $ SPRITE (Berkeley)";
  13. #endif not lint
  14.  
  15. #include "sprite.h"
  16. #include "fs.h"
  17.  
  18. #include "compatInt.h"
  19. #include <errno.h>
  20.  
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * chown --
  26.  *
  27.  *    Procedure to map from Unix chown system call to Sprite 
  28.  *    Fs_SetAttr system call.
  29.  *
  30.  * Results:
  31.  *      UNIX_SUCCESS    - the call was successful.
  32.  *      UNIX_ERROR      - the call was not successful.
  33.  *                        The actual error code stored in errno.
  34.  *
  35.  * Side effects:
  36.  *    The protection of the specified file is modified.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. chown(path, owner, group)
  43.     char *path;
  44.     int owner;
  45.     int group;
  46. {
  47.     ReturnStatus status;    /* result returned by Sprite system calls */
  48.     Fs_Attributes attributes;    /* struct containing all file attributes.
  49.                  * only ownership is looked at. */
  50.  
  51.     attributes.uid = owner;
  52.     attributes.gid = group;
  53.     status = Fs_SetAttr(path,  FS_ATTRIB_LINK, &attributes, FS_SET_OWNER);
  54.     if (status != SUCCESS) {
  55.     errno = Compat_MapCode(status);
  56.     return(UNIX_ERROR);
  57.     } else {
  58.     return(UNIX_SUCCESS);
  59.     }
  60. }
  61.  
  62.  
  63. /*
  64.  *----------------------------------------------------------------------
  65.  *
  66.  * fchown --
  67.  *
  68.  *    Procedure to map from Unix fchown system call to Sprite 
  69.  *    Fs_SetAttrID system call.
  70.  *
  71.  * Results:
  72.  *      UNIX_SUCCESS    - the call was successful.
  73.  *      UNIX_ERROR      - the call was not successful.
  74.  *                        The actual error code stored in errno.
  75.  *
  76.  * Side effects:
  77.  *    The protection of the specified file is modified.
  78.  *
  79.  *----------------------------------------------------------------------
  80.  */
  81.  
  82. int
  83. fchown(fd, owner, group)
  84.     int fd;
  85.     int owner;
  86.     int group;
  87. {
  88.     ReturnStatus status;    /* result returned by Sprite system calls */
  89.     Fs_Attributes attributes;    /* struct containing all file attributes,
  90.                  * only ownship info is looked at. */
  91.  
  92.     attributes.uid = owner;
  93.     attributes.gid = group;
  94.     status = Fs_SetAttrID(fd, &attributes, FS_SET_OWNER);
  95.     if (status != SUCCESS) {
  96.     errno = Compat_MapCode(status);
  97.     return(UNIX_ERROR);
  98.     } else {
  99.     return(UNIX_SUCCESS);
  100.     }
  101. }
  102.